home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / maxime.dxr / 00145.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  842 b   |  44 lines

  1. on enterFrame
  2.   global Gflag
  3.   set Gflag to 0
  4. end
  5.  
  6. on mouseUp
  7.   global Aframe
  8.   if rollOver(1) then
  9.     go(Aframe - 1)
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   if rollOver(12) then
  15.     if the visible of sprite 12 = 0 then
  16.       set the visible of sprite 12 to 1
  17.     end if
  18.   else
  19.     set the visible of sprite 12 to 0
  20.   end if
  21.   if rollOver(13) then
  22.     if the visible of sprite 13 = 0 then
  23.       set the visible of sprite 13 to 1
  24.     end if
  25.   else
  26.     set the visible of sprite 13 to 0
  27.   end if
  28.   if rollOver(14) then
  29.     if the visible of sprite 14 = 0 then
  30.       set the visible of sprite 14 to 1
  31.     end if
  32.   else
  33.     set the visible of sprite 14 to 0
  34.   end if
  35.   if rollOver(15) then
  36.     if the visible of sprite 15 = 0 then
  37.       set the visible of sprite 15 to 1
  38.     end if
  39.   else
  40.     set the visible of sprite 15 to 0
  41.   end if
  42.   go(the frame)
  43. end
  44.